ffa0ff2
@@ -379,7 +379,10 @@
public int processReader(BufferedReader r) throws IOException {
     StringBuilder qsb = new StringBuilder();
 
     while ((line = r.readLine()) != null) {
-      qsb.append(line + "\n");
+      // Skipping through comments
+      if (! line.startsWith("--")) {
+        qsb.append(line + "\n");
+      }
     }
 
     return (processLine(qsb.toString()));
